home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 3 / Info_Mac_1994-01.iso / Development / Source / MultiSession 1.04 Source / Core 27⁄June⁄1993 / CSimpleButton.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-10  |  434 b   |  22 lines  |  [TEXT/KAHL]

  1. /* CSimpleButton.h */
  2.  
  3. #pragma once
  4.  
  5. #include "CButton.h"
  6.  
  7. /* forward */
  8. class CWindow;
  9. class CEnclosure;
  10.  
  11. struct    CSimpleButton    :    CButton
  12.     {
  13.         Handle        Name;
  14.         EXECUTE(MyBoolean Initialized;)
  15.  
  16.         /* */            ~CSimpleButton();
  17.         void            ISimpleButton(LongPoint Start, LongPoint Extent, Handle NameString,
  18.                                 char Key, short Modifiers, CWindow* TheWindow, CEnclosure* TheEnclosure);
  19.         void            RedrawNormal();
  20.         void            RedrawHilited();
  21.     };
  22.